body {
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #7be68f, #55d6ab);
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.custom-header {
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
    background: url('https://images.unsplash.com/photo-1532009324734-20a7a5813719');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.custom-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ff78ae; /* Cor rosada */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.custom-header p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.product {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 20px;
    animation: slideInLeft 1s ease forwards;
}

.product-info {
    flex: 1;
    padding: 0 20px;
    text-align: left;
}

.title {
    color: #ff78ae; /* Cor rosada */
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}

.product-info p {
    color: #6aa84f; /* Cor verde */
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 300px;
}

.purchase-button {
    display: inline-block;
    background-color: #55d6ab;
    color: #6a2c70; /* Cor roxa */
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 20px;
    display: block;
    width: 100%;
}

.purchase-button:hover {
    background-color: #3fc68a;
}

.benefits-section {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.benefits-title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ff78ae; /* Cor rosada */
    margin-bottom: 30px;
}

.benefit-box {
    width: calc(33% - 20px);
    background-color: #fff; /* Cor de fundo */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centralizar conteúdo verticalmente */
    text-align: center; /* Centralizar conteúdo horizontalmente */
}

.benefit-box:hover {
    transform: translateY(-5px);
}

.benefit-box p {
    margin: 0;
}

.benefit-box p:first-child {
    font-size: 36px;
    margin-bottom: 10px;
}

.benefit-title-text {
    font-size: 18px;
    font-weight: bold;
    color: #ff78ae; /* Cor rosada */
    margin-bottom: 10px;
    /* Adicionar efeito */
    transition: transform 0.3s ease;
}

.benefits-section:hover .benefit-title-text {
    transform: scale(1.1); /* Aumenta o tamanho do texto quando o mouse passa sobre a seção */
}

.bottom-section {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.bottom-product-box {
    width: calc(33% - 20px);
    background-color: #fff; /* Cor de fundo */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centralizar conteúdo verticalmente */
    text-align: center; /* Centralizar conteúdo horizontalmente */
}

.bottom-product-box img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bottom-button {
    display: inline-block;
    background-color: #55d6ab;
    color: #6a2c70; /* Cor roxa */
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.bottom-button:hover {
    background-color: #3fc68a;
}

.footer {
    background-color: #6a2c70; /* Cor roxa */
    padding: 30px 0;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.footer-product {
    text-align: center;
    width: 45%; /* Define a largura dos elementos para 45% */
    margin-bottom: 20px; /* Adiciona um espaçamento inferior */
}

.footer-product img {
    max-width: 100%; /* Define a largura máxima da imagem como 100% */
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px; /* Reduz o espaçamento inferior da imagem */
}

.footer-button {
    display: inline-block;
    background-color: #55d6ab;
    color: #6a2c70; /* Cor roxa */
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.footer-button:hover {
    background-color: #3fc68a;
}
